home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / basic / fglqbx10.zip / 12-11.BAS < prev    next >
BASIC Source File  |  1991-06-07  |  358b  |  22 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. Status = FGinitjoy(1)
  6. Status = FGinitjoy(2)
  7.  
  8. WHILE INKEY$ = ""
  9.    X = FGgetxjoy(1)
  10.    Y = FGgetyjoy(1)
  11.    B = FGbutton(1)
  12.    PRINT USING "1:  ### ### #"; X, Y, B
  13.    X = FGgetxjoy(2)
  14.    Y = FGgetyjoy(2)
  15.    B = FGbutton(2)
  16.    PRINT USING "2:  ### ### #"; X, Y, B
  17.    PRINT
  18.    FGwaitfor 9
  19. WEND
  20.  
  21. END
  22.